-- card: 18743 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 4755 -- name: -- part contents for background part 4 ----- text ----- inherited::set(); The 'inherited' specifier indicates that the set() method of the base class (namely Person) is being called. When a set message is sent to an object of type Student, the id_number instance variable is assigned, and then the age and weight instance variables are assigned according to the inherited set() function. In C++ the 'inherited' word is not available, and the programmer should instead use: Person::set(); The overriding print() method uses the same technique to call the inherited print() method. -- part contents for background part 7 ----- text ----- 46